home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / tmp / fastpath.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  874 b   |  34 lines

  1. /* ----------------------------------------------------------------
  2.  *   FILE
  3.  *    fastpath.h
  4.  *
  5.  *   DESCRIPTION
  6.  *
  7.  *   NOTES
  8.  *    This information pulled out of tcop/fastpath.c and put
  9.  *    here so that the PQfn() in be-pqexec.c could access it.
  10.  *    -cim 2/26/91
  11.  *
  12.  *   IDENTIFICATION
  13.  *    $Header: /private/postgres/src/lib/H/tmp/RCS/fastpath.h,v 1.1 1991/02/26 19:23:32 cimarron Exp $
  14.  * ----------------------------------------------------------------
  15.  */
  16.  
  17. #ifndef FastpathIncluded     /* include this file only once. */
  18. #define FastpathIncluded     1
  19.  
  20. /* ----------------
  21.  *    fastpath #defines
  22.  * ----------------
  23.  */
  24. #define FUNCTION_BY_NAME     (-1)
  25. #define MAX_FUNC_NAME_LENGTH    80
  26. #define VAR_LENGTH_RESULT     (-1)
  27. #define VAR_LENGTH_ARG         (-5)
  28. #define MAX_STRING_LENGTH     100
  29. #define PORTAL_RESULT         (-2)
  30. #define PASS_BY_REF         (1)
  31. #define PASS_BY_VALUE         (0)
  32.  
  33. #endif FastpathIncluded
  34.